/*
 * ISBAT shared typography — mirrors the live site (isbaneteknikk.no).
 * Headings: Outfit. Body: Inter. Matches GeneratePress-isbat-child theme.
 *
 * Loaded site-wide alongside top-meny.css so every page uses the same fonts.
 * Conservative override: sets font on body + headings/nav only, leaving the
 * rest of each page's CSS (spacing, colors, layout) untouched.
 */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --isbat-font-heading: 'Outfit', 'Plus Jakarta Sans', 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --isbat-font-body: 'Inter', 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* Body text — Inter, like the live site. */
body {
  font-family: var(--isbat-font-body);
}

/* Headings and brand/nav typography — Outfit, like the live site. */
h1, h2, h3, h4, h5, h6,
.isbat-nav, .isbat-brand,
.isw-eyebrow, .sv-title, .sv-hub-card-title,
.isbat-hero h1, .is25-ks-wrap h1, .is25-ks-wrap h2,
.isbat-shop-notice__title {
  font-family: var(--isbat-font-heading);
}
