/**
 * Quwa Theme - Self-Hosted Web Fonts
 *
 * Performance-optimized font loading:
 * - Self-hosted woff2 files (no external requests)
 * - Subsetted to Latin characters only
 * - font-display: swap prevents FOIT
 *
 * Fonts used:
 * - Poppins: Headings, UI elements, badges (500, 600, 700)
 * - Merriweather: Body text, meta, excerpts (400, 700)
 * - Vollkorn: Article body paragraphs (400, 700)
 *
 * Total budget: ~50KB for all 7 font files
 *
 * Download fonts from: https://gwfh.mranftl.com/fonts
 * Select "latin" subset only for smaller file sizes.
 *
 * @package Quwa_Theme
 * @since 1.0.0
 */

/* =========================================================================
   POPPINS - Headings & UI
   ========================================================================= */

/* Poppins Medium (500) */
@font-face {
    font-family: 'Poppins';
    src: url('poppins-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Poppins SemiBold (600) */
@font-face {
    font-family: 'Poppins';
    src: url('poppins-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Poppins Bold (700) */
@font-face {
    font-family: 'Poppins';
    src: url('poppins-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* =========================================================================
   MERRIWEATHER - Body Text & Meta
   ========================================================================= */

/* Merriweather Regular (400) */
@font-face {
    font-family: 'Merriweather';
    src: url('merriweather-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Merriweather Bold (700) */
@font-face {
    font-family: 'Merriweather';
    src: url('merriweather-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* =========================================================================
   VOLLKORN - Article Body Paragraphs
   ========================================================================= */

/* Vollkorn Regular (400) */
@font-face {
    font-family: 'Vollkorn';
    src: url('vollkorn-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Vollkorn Bold (700) */
@font-face {
    font-family: 'Vollkorn';
    src: url('vollkorn-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
