/*
 * Self-hosted fonts — Cleaning & Care.
 *
 * The theme loads Google Fonts from the CDN by default. To self-host instead:
 *   1. Download the woff2 files (e.g. via https://gwfh.mranftl.com — select
 *      Instrument Serif (400 + 400italic), Inter Tight (400/500/600/700),
 *      JetBrains Mono (400/500), charset latin).
 *   2. Drop the .woff2 files into this folder (/assets/fonts/) using the exact
 *      filenames referenced below.
 *   3. In WP Admin → Appearance → Customize → Site Settings, enable
 *      "Self-host fonts".
 *
 * If a file is missing the browser silently falls back to the system stack —
 * nothing breaks.
 */

@font-face {
	font-family: "Instrument Serif";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("instrument-serif-v4-latin-regular.woff2") format("woff2");
}
@font-face {
	font-family: "Instrument Serif";
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url("instrument-serif-v4-latin-italic.woff2") format("woff2");
}

@font-face {
	font-family: "Inter Tight";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("inter-tight-v7-latin-regular.woff2") format("woff2");
}
@font-face {
	font-family: "Inter Tight";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("inter-tight-v7-latin-500.woff2") format("woff2");
}
@font-face {
	font-family: "Inter Tight";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("inter-tight-v7-latin-600.woff2") format("woff2");
}
@font-face {
	font-family: "Inter Tight";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("inter-tight-v7-latin-700.woff2") format("woff2");
}

@font-face {
	font-family: "JetBrains Mono";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("jetbrains-mono-v18-latin-regular.woff2") format("woff2");
}
@font-face {
	font-family: "JetBrains Mono";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("jetbrains-mono-v18-latin-500.woff2") format("woff2");
}
