/*
 * DWWV Ranking – zentrale Schriftart.
 *
 * Einzige Quelle der Wahrheit für die Schrift der gesamten App. In JEDER View
 * als erstes Stylesheet einbinden; alle anderen CSS-Dateien nutzen ausschließlich
 * var(--font-family). So greift DINish ausnahmslos überall.
 *
 * DINish ist ein Open-Source-DIN-Klon (Ersatz für die kommerzielle DIN Next von
 * dwwv.de). Lizenz CC-BY-SA-4.0, siehe /assets/fonts/dinish/LICENSE-CC-BY-SA-4.0.txt
 */
@font-face {
    font-family: 'DINish';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/dinish/DINish-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'DINish';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/dinish/DINish-Medium.woff2') format('woff2');
}
@font-face {
    font-family: 'DINish';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/dinish/DINish-SemiBold.woff2') format('woff2');
}
@font-face {
    font-family: 'DINish';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/dinish/DINish-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'DINish';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/assets/fonts/dinish/DINish-Heavy.woff2') format('woff2');
}

:root {
    --font-family: 'DINish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-display: 'DINish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
