/*
 * Manrope, self-hosted.
 *
 * advanced.css asks for 'Manrope' in its very first body rule. Without these
 * declarations the browser silently falls back to system-ui and every glyph on the
 * site is wrong — while looking correct on any machine that happens to have Manrope
 * installed. That is how it stayed unnoticed in the previous build: the page looked
 * right locally while `document.fonts` reported an error and every visitor got the
 * fallback. Verify with document.fonts, never with a screenshot.
 *
 * Never the Google CDN. docs/05 §7.2: 31 of the 32 prototype pages fetch Manrope from
 * fonts.googleapis.com, which hands every visitor's IP to Google and is a GDPR problem
 * for a German site. These two files come from the previous build, which had already
 * done this work.
 *
 * Both carry the full 300-800 weight axis. Split by subset the way Google Fonts does,
 * so a Latin-only visit pulls 25 KB instead of 40 KB — the latin-ext face only loads
 * when a page actually needs a character from it. The unicodeRange values are Google's
 * own.
 *
 * Manrope is SIL Open Font License 1.1. Licence alongside as OFL.txt.
 */

@font-face {
	font-family: "Manrope";
	font-style: normal;
	font-weight: 300 800;
	font-display: swap;
	src: url("manrope-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: "Manrope";
	font-style: normal;
	font-weight: 300 800;
	font-display: swap;
	src: url("manrope-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
		U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
		U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
