/* ==========================================================================
   Lettertypen — De Vijf Pleintjes
   --------------------------------------------------------------------------
   De huisstijlfont is Zeitung Pro (Underware). Die mag alleen meegeleverd
   worden als de stichting over een geldige weblicentie beschikt, dus staat
   het @font-face-blok hieronder uitgeschakeld.

   Zeitung Pro activeren:
   1. Zet de woff2-bestanden in /assets/fonts/ met deze namen:
        zeitung-pro-regular.woff2
        zeitung-pro-italic.woff2
        zeitung-pro-semibold.woff2
        zeitung-pro-bold.woff2
   2. Haal de comment-tekens rond het blok "ZEITUNG PRO" weg.
   Meer hoeft er niet te gebeuren: in main.css staat 'Zeitung Pro' al als
   eerste in de fontstack, met Inter als terugvaloptie.

   Alles wordt lokaal geladen (geen Google Fonts / externe CDN), dus er gaan
   geen bezoekersgegevens naar derden. Dat scheelt een cookie- en AVG-discussie.
   ========================================================================== */

/* --- ZEITUNG PRO (uitgeschakeld tot de licentiebestanden er staan) ---------

@font-face {
	font-family: 'Zeitung Pro';
	src: url('../fonts/zeitung-pro-regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Zeitung Pro';
	src: url('../fonts/zeitung-pro-italic.woff2') format('woff2');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Zeitung Pro';
	src: url('../fonts/zeitung-pro-semibold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Zeitung Pro';
	src: url('../fonts/zeitung-pro-bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

--------------------------------------------------------------------------- */

/* --- Inter (variabel, lokaal) — terugvaloptie ----------------------------- */

@font-face {
	font-family: 'Inter var';
	src: url('../fonts/inter-latin-wght-normal.woff2') format('woff2-variations');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
		U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
		U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'Inter var';
	src: url('../fonts/inter-latin-wght-italic.woff2') format('woff2-variations');
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
		U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
		U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
