/* ═══════════════════════════════════════════════════════════
   GESTEMAS LOCAL FONTS
   Eliminating Google Fonts latency for native-feel performance.
   ═══════════════════════════════════════════════════════════ */

/* OUTFIT (Brand/Headings) from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&display=swap');

/* INTER (Content/UI) from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');


:root {
    --gestemas-font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --gestemas-font-brand: 'Outfit', sans-serif;
}

body.gestemas-app-body {
    font-family: var(--gestemas-font-main);
}

.gestemas-outfit, h1, h2, h3, h4, h5, h6 {
    font-family: var(--gestemas-font-brand);
}
