/**
 * Self-hosted font declarations.
 *
 * Shipped INACTIVE (commented out) because font files can't be bundled
 * sight-unseen into a client build. Until you self-host the files, the
 * site already looks correct — style.css's `--ra-font-heading` /
 * `--ra-font-body` stacks fall back to each OS's native UI font
 * (San Francisco / Segoe UI / Roboto), which is fast and legible.
 *
 * TO ACTIVATE (see the implementation guide, Section "Fonts", for the
 * click-by-click version):
 *   1. Download woff2 files for Poppins (600, 700) and Inter (400, 500, 600)
 *      — e.g. via https://gwfh.mranftl.com/fonts (pick "Self host" mode).
 *   2. Place them in this /fonts/ folder next to this file.
 *   3. Uncomment the @font-face blocks below.
 *   4. Hard refresh — Poppins/Inter now load with zero external requests.
 */

/*
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('poppins-600.woff2') format('woff2');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('poppins-700.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('inter-400.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('inter-500.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('inter-600.woff2') format('woff2');
}
*/
