/**
 * Self-hosted Inter + Outfit, replacing the fonts.googleapis.com stylesheet.
 *
 * Audit P3: the remote <link rel="stylesheet"> was an ~845ms render-blocking
 * round trip to a third party on every page. Both files below are the same
 * variable-font woff2 Google's own css2 endpoint serves for every weight
 * this site uses (400/500/600 Inter, 500/700 Outfit all resolve to one file
 * each — verified against the Google Fonts API response), latin subset only,
 * so this is two font-family declarations, not five.
 */

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400 600;
	font-display: swap;
	src: url('../fonts/inter-var.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: 'Outfit';
	font-style: normal;
	font-weight: 500 700;
	font-display: swap;
	src: url('../fonts/outfit-var.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;
}
