/**
 * Self-hosted fonts (P13.2 — Performance Quick Wins).
 *
 * Manrope and Space Grotesk are the only font families referenced anywhere
 * in the theme's CSS (main.css / mock/styles.css --font-body / --font-heading
 * / --font-display custom properties). Both were served by Google Fonts as
 * variable-font files covering their full requested weight range in a
 * single binary, so one self-hosted file per family is sufficient to
 * reproduce the exact same rendering — this replaces the fonts.googleapis.com
 * CDN load, it does not change which weights are available.
 *
 * A third family, Sora, was previously requested from the CDN but is not
 * referenced by any selector in the theme's CSS; it is intentionally not
 * self-hosted here (dead weight removed, zero visual impact).
 *
 * @package BraiNDOos
 */

@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url('../fonts/manrope-variable-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'Space Grotesk';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('../fonts/space-grotesk-variable-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
