/**
 * Lokal eingebundene Schriften (Variable Fonts).
 *
 * Wird nur geladen, wenn in der wp-config.php steht:
 *     define( 'BM_GOOGLE_FONTS', false );
 *
 * Erwartet werden drei Dateien in diesem Ordner, exakt so benannt:
 *
 *     big-shoulders.woff2
 *     open-sans.woff2
 *     cormorant-garamond.woff2
 *
 * Eine Variable-Font-Datei enthält alle Schnitte, deshalb genügt
 * je Familie eine Datei und ein font-weight-Bereich.
 */

/* ---------- Überschriften ---------- */

@font-face {
	font-family: "Big Shoulders Display";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("BigShoulders-VariableFont_opsz,wght.woff2") format("woff2");
}

/* Google führt die Familie inzwischen teils ohne "Display". */
@font-face {
	font-family: "Big Shoulders";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("BigShoulders-VariableFont_opsz,wght.woff2") format("woff2");
}

/* ---------- Fließtext ---------- */

@font-face {
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 300 800;
	font-display: swap;
	src: url("DMSans-VariableFont_opsz,wght.woff2") format("woff2");
}

/* ---------- Laufband ---------- */

@font-face {
	font-family: "Cormorant Garamond";
	font-style: normal;
	font-weight: 300 700;
	font-display: swap;
	src: url("CormorantGaramond-VariableFont_wght.woff2") format("woff2");
}

@font-face {
	font-family: "Cormorant";
	font-style: normal;
	font-weight: 300 700;
	font-display: swap;
	src: url("CormorantGaramond-VariableFont_wght.woff2") format("woff2");
}
