/* Self-hosted fonts (Latin subset). Fraunces was removed in the Astro migration:
   it was declared in the legacy stylesheet but used 0 times, so dropping it saves
   ~145 KB (>50% of prior font weight) with zero visual change.
   Live families: Zodiak (display serif) and Hanken Grotesk (body/labels). */

/* Zodiak - display serif for headings (regular, italic, bold, bold italic) */
@font-face {
	font-family: 'Zodiak';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('/fonts/zodiak-regular.woff2') format('woff2');
}
@font-face {
	font-family: 'Zodiak';
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url('/fonts/zodiak-italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Zodiak';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('/fonts/zodiak-bold.woff2') format('woff2');
}
@font-face {
	font-family: 'Zodiak';
	font-style: italic;
	font-weight: 700;
	font-display: swap;
	src: url('/fonts/zodiak-bolditalic.woff2') format('woff2');
}

/* Hanken Grotesk - body and labels (one variable file covers 400-600) */
@font-face {
	font-family: 'Hanken Grotesk';
	font-style: normal;
	font-weight: 400 600;
	font-display: swap;
	src: url('/fonts/hanken-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}
