/*
 * Self-hosted, no external Google Fonts requests. Cormorant and Karla are
 * each served by Google Fonts as a single variable-font file regardless of
 * which individual static weight is requested — the 500 and 600 requests
 * for Cormorant, and the 400/500/700 requests for Karla, all resolved to
 * byte-identical files (confirmed by hash before committing to this
 * pattern) — so each is kept as one file with a weight range and
 * format('woff2-variations'), letting the browser select the instance.
 * JetBrains Mono is the same. Only Cormorant's italic is a distinct file.
 */

@font-face {
	font-family: 'Cormorant';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('../fonts/cormorant-variable.woff2') format('woff2-variations');
}
@font-face {
	font-family: 'Cormorant';
	font-style: italic;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/cormorant-500italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Karla';
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
	src: url('../fonts/karla-variable.woff2') format('woff2-variations');
}
@font-face {
	font-family: 'JetBrains Mono';
	font-style: normal;
	font-weight: 100 800;
	font-display: swap;
	src: url('../fonts/jetbrains-mono-variable.woff2') format('woff2-variations');
}
