/*
 * Self-hosted @font-face — see assets/fonts/README.txt for provenance.
 * font-display: swap, no external request.
 *
 * 0.7.0 RC performance pass: WOFF2 added as the preferred format (both
 * fonts converted losslessly with fontTools -- same variable-font glyph
 * data, just compressed: Newsreader 448KB -> 214KB, Manrope 167KB -> 54KB,
 * ~56% smaller combined). The original TTFs stay in assets/fonts/ and
 * listed second in `src` as a fallback for any browser that doesn't take
 * the WOFF2 entry, until this is verified on real staging; safe to remove
 * them in a later pass once confirmed.
 */

@font-face {
	font-family: "Newsreader";
	src:
		url("../fonts/newsreader-variable.woff2") format("woff2"),
		url("../fonts/newsreader-variable.ttf") format("truetype");
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
}

@font-face {
	font-family: "Manrope";
	src:
		url("../fonts/manrope-variable.woff2") format("woff2"),
		url("../fonts/manrope-variable.ttf") format("truetype");
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
}
