/**
 * Self-hosted Fonts
 *
 * All font files are served from /resources/fonts/ to avoid third-party
 * requests to fonts.googleapis.com (GDPR compliance, removes DNS+TCP+TLS
 * latency, and eliminates external CDN dependency).
 *
 * HOW TO DOWNLOAD FONT FILES
 * ---------------------------
 * Use google-webfonts-helper: https://gwfh.mranftl.com/fonts
 *
 * Outfit (variable):
 *   Search "Outfit", select all styles, download woff2 only.
 *   Rename to: outfit.woff2
 *   Place in: resources/fonts/
 *
 * Lato:
 *   Search "Lato", select styles: Regular 400, Italic 400, Bold 700.
 *   Download woff2 only. Rename files and place in resources/fonts/:
 *     lato-400.woff2
 *     lato-400italic.woff2
 *     lato-700.woff2
 *   NOTE: Lato has no 500 or 600 weight cuts. The 500 and 600 @font-face
 *   rules below map to lato-700.woff2 so explicit weight usage stays
 *   within the Lato typeface rather than falling back to a system font.
 *
 * Permanent Marker:
 *   Search "Permanent Marker", select Regular 400, download woff2 only.
 *   Rename to: permanent-marker-400.woff2
 *   Place in: resources/fonts/
 *
 * @since 2.3.0
 * @package WordPress
 * @subpackage Codehills Kickstarter Theme
 */

/****** Outfit — Variable font (100–900, normal) ******/

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/outfit.woff2') format('woff2');
    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+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/****** Lato — Regular (400) ******/

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/lato-400.woff2') format('woff2');
    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+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/****** Lato — Italic (400) ******/

@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/lato-400italic.woff2') format('woff2');
    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+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/****** Lato — Medium (500) ******/

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/lato-500.woff2') format('woff2');
    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+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/****** Lato — SemiBold (600) ******/

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/lato-600.woff2') format('woff2');
    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+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/****** Lato — Bold (700) ******/

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/lato-700.woff2') format('woff2');
    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+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/****** Permanent Marker — Regular (400) ******/

@font-face {
    font-family: 'Permanent Marker';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/permanent-marker-400.woff2') format('woff2');
    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+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
