/* ==========================================================================
   CURB VIBES - SELF-HOSTED FONT FACES
   Verified font binaries ship with the theme as of 0.4.1: Fraunces
   (upright + italic) and Source Sans 3 (upright), both SIL OFL 1.1 -
   licence files are beside the binaries in assets/fonts/. See
   assets/fonts/README.md for exact paths.

   This stylesheet is still enqueued conditionally (inc/enqueue.php ->
   curbvibes_fonts_available()) as a safety guard: if a future rebuild
   ever ships without one of the three required files, the site falls
   back to the stacks in tokens.css instead of requesting a missing font.
   No external font CDN (Google Fonts, Adobe Fonts, etc.) is ever called.
   ========================================================================== */

/* Fraunces - variable (weight 100-900, optical size 9-144, SOFT, WONK).
   Used for display/H1/H2 at weight 600 and the italic brand line. */
@font-face {
	font-family: "Fraunces";
	src: url("../fonts/fraunces/fraunces-variable.woff2") format("woff2-variations");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Fraunces";
	src: url("../fonts/fraunces/fraunces-italic-variable.woff2") format("woff2-variations");
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}

/* Source Sans 3 - variable (weight 200-900). Used at 400/600/700. */
@font-face {
	font-family: "Source Sans 3";
	src: url("../fonts/source-sans-3/source-sans-3-variable.woff2") format("woff2-variations");
	font-weight: 200 900;
	font-style: normal;
	font-display: swap;
}
