/**
 * Self-hosted font faces — Archivo (display) + Inter (body), per the build
 * brief. Self-hosted (not called from Google Fonts' CDN at runtime) so no
 * visitor request ever leaves the site, satisfying the PDPA requirement
 * noted in the brief. Variable fonts, Latin subset (covers English +
 * standard typographic punctuation used throughout the site).
 */

@font-face {
	font-family: 'Archivo';
	src: url('archivo-var.woff2') format('woff2');
	font-weight: 400 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('inter-var.woff2') format('woff2');
	font-weight: 300 800;
	font-style: normal;
	font-display: swap;
}
