/**
 * FONTS — DEPLOYMENT CONFIG
 *
 * This file is loaded on every page. Use it to:
 *   1. Declare @font-face rules for self-hosted fonts
 *   2. Set CSS font variables used throughout the theme
 *
 * Google Fonts are registered via the kaizen_google_font_urls filter
 * in your site-specific functions.php — not here.
 *
 * Example Google Fonts filter (add to functions.php):
 *
 *   add_filter( 'kaizen_google_font_urls', function( $urls ) {
 *       $urls[] = 'https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap';
 *       return $urls;
 *   });
 *
 * ================================
 * SELF-HOSTED FONTS
 * Uncomment and update per deployment.
 * ================================
 */

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

/* ================================
   GLOBAL FONT VARIABLES
   Set these per deployment.
   ================================ */

:root {
    /* --font-body:    'Inter', sans-serif; */
    /* --font-heading: 'Playfair Display', serif; */
    /* --font-script:  'CustomFont', cursive; */
}
