/**
 * Self-hosted fonts — no external CDN request.
 *
 * Frank Ruhl Libre: a restrained, high-contrast book serif for headings —
 * quiet gravitas rather than a display/editorial swash serif (deliberately
 * distinct from this catalogue's Fraunces/Cormorant/EB Garamond headings
 * already in use on other sibling themes). Google serves it as a single
 * variable-source file sliced into discrete static @font-face weight
 * blocks; declaring one @font-face with a weight range against that same
 * file lets the browser select the correct instance while shipping one
 * request instead of four. Latin subset only.
 *
 * Urbanist: a clean humanist geometric sans for UI/body text, unused
 * elsewhere in this catalogue. True variable font (wght axis), latin
 * subset only, normal + italic.
 *
 * @package MerrickVane
 */
@font-face {
	font-family: 'Frank Ruhl Libre';
	font-style: normal;
	font-weight: 300 700;
	font-display: swap;
	src: url('../fonts/frankruhllibre-var.woff2') format('woff2-variations'), url('../fonts/frankruhllibre-var.woff2') format('woff2');
}

@font-face {
	font-family: 'Urbanist';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('../fonts/urbanist-var.woff2') format('woff2-variations'), url('../fonts/urbanist-var.woff2') format('woff2');
}

@font-face {
	font-family: 'Urbanist';
	font-style: italic;
	font-weight: 400 700;
	font-display: swap;
	src: url('../fonts/urbanist-italic-var.woff2') format('woff2-variations'), url('../fonts/urbanist-italic-var.woff2') format('woff2');
}
