/**
 * Self-hosted web fonts — docs/15-wordpress-architecture.md §7 (no external
 * font requests, font-display: swap). Families per the 2026-07-14 redesign
 * brief (docs/01 §8): Cormorant Garamond (display, roman + italic — the
 * italic is the signature emphasis face) and Inter (body/UI).
 */

@font-face {
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 300 700;
	font-display: swap;
	src: url('../fonts/cormorant-garamond-var.woff2') format('woff2');
}

@font-face {
	font-family: 'Cormorant Garamond';
	font-style: italic;
	font-weight: 300 700;
	font-display: swap;
	src: url('../fonts/cormorant-garamond-italic-var.woff2') format('woff2');
}

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