/**
 * 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://variable-font-helper.web.app/
 *
 * Barlow:
 *   Search "Barlow", select all styles, download woff2 only.
 *   Rename the downloaded file to: barlow.woff2
 *   Place it in: resources/fonts/ *
 *
 * Alternatively use the Google Fonts download page directly:
 *   https://fonts.google.com/specimen/Barlow
 *
 * @since 2.3.0
 * @package WordPress
 * @subpackage Codehills Kickstarter Theme
 */

/****** Barlow — Regular font (400, normal) ****** */

@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/barlow-regular.woff2") format("woff2");
}
/****** Barlow — Italic font (400, italic) ****** */

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

/****** Barlow — Semibold font (600, normal) ****** */

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

/****** Barlow — Bold font (700, normal) ****** */

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

/****** Barlow — Bold Italic font (700, italic) ****** */

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

/****** Barlow — Semi Condensed Medium font (500, normal) ****** */

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

/****** Barlow — Semi Condensed Semibold font (600, normal) ****** */

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

/****** Barlow — Semi Condensed Bold font (700, normal) ****** */

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

/****** Barlow — Semi Condensed Black font (900, normal) ****** */

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