/*
 * Self-hosted font faces — replaces the fonts.googleapis.com / fonts.gstatic.com
 * CDN request that used to be enqueued in functions.php.
 *
 * Files expected on disk (not shipped in this diff — see
 * assets/fonts/README.md for how to generate them):
 *   assets/fonts/inter/inter-400.woff2   assets/fonts/inter/inter-500.woff2
 *   assets/fonts/inter/inter-600.woff2   assets/fonts/inter/inter-700.woff2
 *   assets/fonts/fraunces/fraunces-400.woff2   assets/fonts/fraunces/fraunces-500.woff2
 *   assets/fonts/fraunces/fraunces-600.woff2   assets/fonts/fraunces/fraunces-400-italic.woff2
 *
 * Static weights (not a single variable-font file) on purpose: it's the
 * simplest, most broadly-cacheable self-hosting shape, and it mirrors
 * exactly the four Inter weights + three Fraunces cuts the theme actually
 * uses (see the old Google Fonts URL this replaces, in functions.php's
 * CHANGELOG entry for 1.7.0).
 */

@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/inter-400.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/inter-500.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/inter-600.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/inter-700.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Fraunces';
	src: url('../fonts/fraunces/fraunces-400.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Fraunces';
	src: url('../fonts/fraunces/fraunces-500.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Fraunces';
	src: url('../fonts/fraunces/fraunces-600.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Fraunces';
	src: url('../fonts/fraunces/fraunces-400-italic.woff2') format('woff2');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}
