/* ============================================================
   Misoify — self-hosted font faces
   ------------------------------------------------------------
   Served from local .woff2 files in /fonts/ — no live network
   needed on first paint. Figtree and Quicksand are variable
   fonts on Google Fonts, so one file covers every weight below;
   Space Mono ships as separate static files per weight. Source:
   Google Fonts (all three are SIL Open Font License 1.1).

   Families / weights:
     Quicksand  — 400 500 600 700       (display / headings, --font-head)
     Figtree    — 400 500 600 700 800   (body / UI, --font-body)
     Space Mono — 400 700               (mono / code, --font-mono)
   ============================================================ */

/* ---- Quicksand (display) ---- */
@font-face {
	font-family: "Quicksand";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("/fonts/quicksand-variable.woff2") format("woff2");
}
@font-face {
	font-family: "Quicksand";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("/fonts/quicksand-variable.woff2") format("woff2");
}
@font-face {
	font-family: "Quicksand";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("/fonts/quicksand-variable.woff2") format("woff2");
}
@font-face {
	font-family: "Quicksand";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("/fonts/quicksand-variable.woff2") format("woff2");
}

/* ---- Figtree (body / UI) ---- */
@font-face {
	font-family: "Figtree";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("/fonts/figtree-variable.woff2") format("woff2");
}
@font-face {
	font-family: "Figtree";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("/fonts/figtree-variable.woff2") format("woff2");
}
@font-face {
	font-family: "Figtree";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("/fonts/figtree-variable.woff2") format("woff2");
}
@font-face {
	font-family: "Figtree";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("/fonts/figtree-variable.woff2") format("woff2");
}
@font-face {
	font-family: "Figtree";
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url("/fonts/figtree-variable.woff2") format("woff2");
}

/* ---- Space Mono (code) ---- */
@font-face {
	font-family: "Space Mono";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("/fonts/space-mono-400.woff2") format("woff2");
}
@font-face {
	font-family: "Space Mono";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("/fonts/space-mono-700.woff2") format("woff2");
}
