/**
 * KW Biohof – lokal gehostete Variable Fonts (DSGVO, keine externen Requests).
 * Fraunces = Überschriften, Inter = Fließtext, Inter Tight = Alternative.
 * font-display: optional → kein Größensprung (kein Swap-Reflow); per Preload
 * lädt die Schrift meist rechtzeitig und erscheint sofort.
 */

@font-face {
	font-family: 'Fraunces';
	font-style: normal;
	font-weight: 100 900;
	font-display: optional;
	src: url('./fraunces-variable.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 100 900;
	font-display: optional;
	src: url('./inter-variable.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter Tight';
	font-style: normal;
	font-weight: 100 900;
	font-display: optional;
	src: url('./inter-tight-variable.woff2') format('woff2');
}
