/* ============================================================
   xNetwork — typography.css
   Selbst gehostete Fonts via @font-face. (DSGVO-konform)
   Font-Dateien liegen unter: /shared/fonts/
   ============================================================ */

/* BEGIN FONT-FACE-OUTFIT */
@font-face {
    font-family:  'Outfit';
    src:          url('../fonts/Outfit-Light.woff2') format('woff2');
    font-weight:  300;
    font-style:   normal;
    font-display: swap;
}

@font-face {
    font-family:  'Outfit';
    src:          url('../fonts/Outfit-Regular.woff2') format('woff2');
    font-weight:  400;
    font-style:   normal;
    font-display: swap;
}

@font-face {
    font-family:  'Outfit';
    src:          url('../fonts/Outfit-Medium.woff2') format('woff2');
    font-weight:  500;
    font-style:   normal;
    font-display: swap;
}

@font-face {
    font-family:  'Outfit';
    src:          url('../fonts/Outfit-SemiBold.woff2') format('woff2');
    font-weight:  600;
    font-style:   normal;
    font-display: swap;
}

@font-face {
    font-family:  'Outfit';
    src:          url('../fonts/Outfit-Bold.woff2') format('woff2');
    font-weight:  700;
    font-style:   normal;
    font-display: swap;
}
/* END FONT-FACE-OUTFIT */

/* BEGIN FONT-FACE-JETBRAINSMONO */
@font-face {
    font-family:  'JetBrains Mono';
    src:          url('../fonts/JetBrainsMono-Regular.woff2') format('woff2');
    font-weight:  400;
    font-style:   normal;
    font-display: swap;
}

@font-face {
    font-family:  'JetBrains Mono';
    src:          url('../fonts/JetBrainsMono-Medium.woff2') format('woff2');
    font-weight:  500;
    font-style:   normal;
    font-display: swap;
}
/* END FONT-FACE-JETBRAINSMONO */

/* BEGIN BASE-TYPOGRAPHY */
body {
    font-family:    var(--font-sans);
    font-weight:    400;
    line-height:    1.6;
    letter-spacing: 0.01em;
}
/* END BASE-TYPOGRAPHY */
