/* =========================================================================
   Shell brand typeface — self-hosted (no build step, no Adobe Typekit).
   Licensed files provided: Book + Bold, converted OTF -> woff2.
   Weight ranges map the design's weights onto the two available faces:
     400–500 -> Book, 600–900 -> Bold. So semibold (600, used on buttons /
     eyebrows) renders in the brand Bold face rather than a system fallback.
   To add true Light/Medium/Heavy later, drop the woff2 in /assets/fonts/ and
   tighten these ranges with a matching @font-face block.
   ========================================================================= */

@font-face {
	font-family: "Shell";
	src: url("../fonts/Shell-Book.woff2") format("woff2");
	font-weight: 400 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Shell";
	src: url("../fonts/Shell-Bold.woff2") format("woff2");
	font-weight: 600 900;
	font-style: normal;
	font-display: swap;
}
