/* 
=============================================
LOCAL FONTS
Self-hosted Outfit and Space Mono fonts
=============================================

FOLDER STRUCTURE:
fonts/
├── outfit-300.woff2
├── outfit-400.woff2
├── outfit-500.woff2
├── outfit-600.woff2
├── outfit-700.woff2
├── space-mono-400.woff2
├── space-mono-700.woff2
└── (optional .woff fallbacks)

DOWNLOAD FONTS FROM:
- Outfit: https://fonts.google.com/specimen/Outfit
- Space Mono: https://fonts.google.com/specimen/Space+Mono
Click "Download family" then extract the .ttf files.
Convert to .woff2 at: https://cloudconvert.com/ttf-to-woff2
*/

/* ========== OUTFIT ========== */

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit-300.woff2') format('woff2'),
         url('../fonts/outfit-300.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit-400.woff2') format('woff2'),
         url('../fonts/outfit-400.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit-500.woff2') format('woff2'),
         url('../fonts/outfit-500.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit-600.woff2') format('woff2'),
         url('../fonts/outfit-600.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit-700.woff2') format('woff2'),
         url('../fonts/outfit-700.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ========== SPACE MONO ========== */

@font-face {
    font-family: 'Space Mono';
    src: url('../fonts/space-mono-400.woff2') format('woff2'),
         url('../fonts/space-mono-400.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Mono';
    src: url('../fonts/space-mono-700.woff2') format('woff2'),
         url('../fonts/space-mono-700.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}