/* =========================================
   Mond Design - Global Typography (Inter)
   ========================================= */

/* 1. Register the Custom Font (Fixes the 404 Error) */
@font-face {
    font-family: 'Inter';
    /* CORRECT PATH: Goes up one level (..) from /css, then into /fonts */
    src: url('../fonts/InterVariable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap; 
}

/* 2. Override Blocksy Variables */
:root {
    --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-family-headings: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-family-buttons: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* 3. Force Application (The fallback safety net) */
body, h1, h2, h3, h4, h5, h6, p, a, li, button, input, textarea, span, select {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}