/*
 * MesaFit -- Local Barlow font declarations.
 *
 * Replaces the Google Fonts CDN dependency per the rackAID Part 1 spec
 * (no CDN dependencies, no outbound calls to third parties).
 *
 * Weights match what was previously loaded via fonts.googleapis.com/css2:
 *   - Barlow:           400, 500, 600
 *   - Barlow Condensed: 400, 600, 700
 *
 * Source: Google Fonts, Open Font License (free, commercial use OK).
 *   https://fonts.google.com/specimen/Barlow
 *   https://fonts.google.com/specimen/Barlow+Condensed
 *
 * Subset: latin. URL paths are relative to this file so they resolve in
 * both XAMPP dev (DocumentRoot at htdocs) and production (DocumentRoot
 * at public/).
 */

/* -- Barlow ------------------------------------------------------ */

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

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

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

/* -- Barlow Condensed -------------------------------------------- */

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/barlow-condensed-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/barlow-condensed-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/barlow-condensed-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
