/* -----------------------------------------------------------------------------
   Dankcave — self-hosted font declarations.

   Fonts trimmed to what is actually used across the design mockups:
   - Gabarito (variable, weights 400-700) — base body font
   - Instrument Serif (400 + italic) — editorial callouts
   - Bricolage Grotesque (700) — display headings

   All files are latin subset only (US market). Add more subsets by dropping
   additional woff2 files into ./assets/fonts/ and mirroring the pattern below.
   -------------------------------------------------------------------------- */

/* Gabarito — variable font, single file covers all weights we use */
@font-face {
	font-family: 'Gabarito';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('../fonts/gabarito-variable.woff2') format('woff2-variations'),
	     url('../fonts/gabarito-variable.woff2') format('woff2');
	font-named-instance: 'Regular';
}

/* Instrument Serif — regular */
@font-face {
	font-family: 'Instrument Serif';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/instrumentserif-400.woff2') format('woff2');
}

/* Instrument Serif — italic (used for editorial callouts) */
@font-face {
	font-family: 'Instrument Serif';
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/instrumentserif-400-italic.woff2') format('woff2');
}

/* Bricolage Grotesque — 700 for display headings */
@font-face {
	font-family: 'Bricolage Grotesque';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/bricolagegrotesque-700.woff2') format('woff2');
}
