/*
 * Self-hosted fonts. Two variable-font files total (not a dozen static
 * weights) to keep the font payload small:
 *   - Fraunces (variable, optical size + weight axis) for display/headings
 *   - Inter (variable, weight axis) for UI/body
 *
 * Files referenced below are NOT included in this deliverable (binary
 * font files aren't generated by this tool) -- download the variable
 * .woff2 files from Google Fonts (fonts.google.com/specimen/Fraunces
 * and fonts.google.com/specimen/Inter) or Fontsource, place them at the
 * paths below, and subset to latin (+ devanagari if Hindi copy is ever
 * added) to keep file size down. See README "Fonts" section.
 */

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

@font-face {
	font-family: 'Fraunces';
	src: url('../fonts/fraunces-var.woff2') format('woff2');
	font-weight: 340 620;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Fraunces';
	src: url('../fonts/fraunces-var-italic.woff2') format('woff2');
	font-weight: 340 620;
	font-style: italic;
	font-display: swap;
}
