/*
 * ACF Child — self-hosted variable fonts.
 *
 * NOTE: The .woff2 binaries are NOT in the repo. Drop them in by hand
 * from the official Google Fonts variable downloads:
 *   - Fraunces:  https://fonts.google.com/specimen/Fraunces  → fraunces-variable.woff2
 *   - Inter:     https://fonts.google.com/specimen/Inter     → inter-variable.woff2
 * Place both files alongside this fonts.css in /assets/fonts/.
 *
 * Self-hosted only — no Google Fonts CDN references (privacy + speed).
 */

/* Fraunces — display serif. Variable axes: wght 100–900, opsz 9–144, SOFT, WONK. */
@font-face {
	font-family: "Fraunces";
	src: url("./fraunces-variable.woff2") format("woff2-variations"),
	     url("./fraunces-variable.woff2") format("woff2");
	font-weight: 100 900;
	font-stretch: 25% 151%;
	font-style: normal;
	font-display: swap;
}

/* Inter — UI sans. Variable axes: wght 100–900. */
@font-face {
	font-family: "Inter";
	src: url("./inter-variable.woff2") format("woff2-variations"),
	     url("./inter-variable.woff2") format("woff2");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}
