/*
 * Self-hosted Manrope + Source Serif 4 — replaces the Google Fonts CSS2 API
 * call for these two families (removes the extra DNS lookup + connection to
 * fonts.googleapis.com/fonts.gstatic.com on every first visit).
 *
 * Both are variable fonts: each weight below points at the SAME .woff2 file
 * per family/style — that's not a mistake, it's how Google itself serves
 * them (one variable file, multiple @font-face weight declarations so the
 * browser picks the right instance). Only the Latin subset is included
 * (this theme's copy is English-only); Google's own stylesheet ships several
 * unicode-range subsets (Cyrillic, Greek, Vietnamese, …) this site doesn't
 * use any text in.
 */
@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url('manrope-variable.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: 'Source Serif 4';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('source-serif-4-variable.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: 'Source Serif 4';
	font-style: italic;
	font-weight: 400 500;
	font-display: swap;
	src: url('source-serif-4-italic-variable.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;
}

/*
 * Self-hosted Material Symbols Outlined — the full variable font (all
 * icons, opsz 20..48 / wght 300..500 / FILL 0..1 / GRAD -50..200), same
 * single file Google's own CSS2 API points at. Previously loaded from
 * fonts.googleapis.com/fonts.gstatic.com on the theory that most visitors
 * already had that exact file cached from another site; self-hosting trades
 * that shared-cache chance for one less external request/DNS lookup, at the
 * cost of a larger first-visit download (~4MB, cached after) — worth it for
 * having every icon in the set available rather than a hand-picked subset.
 */
@font-face {
	font-family: 'Material Symbols Outlined';
	font-style: normal;
	font-weight: 300 500;
	font-display: block;
	src: url('material-symbols-outlined.woff2') format('woff2');
}
