/*
   Selbst gehostete Schriften — kein Google-Fonts-CDN (DSGVO).
   Bury nutzt drei Schriften: Syne (Display), Source Serif 4 (Emotion/Zitate),
   DM Sans (Fließtext). woff2 (latin-Subset) müssen noch nach assets/fonts/ gelegt
   werden — bis dahin greifen die System-Fallbacks aus theme.json.
   Dateinamen unten müssen mit den fontFace-src in theme.json übereinstimmen.
*/

@font-face {
	font-family: "Syne";
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url("syne.woff2") format("woff2");
}
@font-face {
	font-family: "Source Serif 4";
	font-style: normal;
	font-weight: 300 600;
	font-display: swap;
	src: url("source-serif-4.woff2") format("woff2");
}
@font-face {
	font-family: "Source Serif 4";
	font-style: italic;
	font-weight: 300 500;
	font-display: swap;
	src: url("source-serif-4-italic.woff2") format("woff2");
}
@font-face {
	font-family: "DM Sans";
	font-style: normal;
	font-weight: 300 700;
	font-display: swap;
	src: url("dm-sans.woff2") format("woff2");
}
