/*
 * Lokale Schrift-Einbindung — DSGVO-konform
 *
 * Die Schrift-Dateien selbst (woff2) müssen separat heruntergeladen
 * und in diesen Ordner kopiert werden. Anleitung dafür liegt der
 * Installations-Doku bei.
 *
 * Was wir nutzen:
 * - Cormorant Garamond (Display): Regular 400, SemiBold 600, Italic 400, Italic 600, Bold 700
 * - Inter (Body): Regular 400, Medium 500, SemiBold 600, Bold 700
 *
 * Beide Schriften sind kostenlos (Open Font License) und dürfen
 * lokal eingebunden werden.
 */

/* ─── CORMORANT GARAMOND ─── */

@font-face {
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('cormorant-garamond-regular.woff2') format('woff2');
}

@font-face {
	font-family: 'Cormorant Garamond';
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url('cormorant-garamond-italic.woff2') format('woff2');
}

@font-face {
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('cormorant-garamond-semibold.woff2') format('woff2');
}

@font-face {
	font-family: 'Cormorant Garamond';
	font-style: italic;
	font-weight: 600;
	font-display: swap;
	src: url('cormorant-garamond-semibold-italic.woff2') format('woff2');
}

@font-face {
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('cormorant-garamond-bold.woff2') format('woff2');
}

/* ─── INTER ─── */

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('inter-regular.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('inter-medium.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('inter-semibold.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('inter-bold.woff2') format('woff2');
}
