/* ============================================================
   Font Variables - LaunchDarkly Brand Fonts
   ============================================================

   Using ASCII-safe font-family names to avoid encoding issues.
   Font files are defined in theme/fonts/fonts.css with {{ resource }} helper.
   ============================================================ */

:root {
    --font-body: 'Sohne', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-heading: 'Audimat 3000', 'Sohne', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-code: 'Sohne Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    --mono-font: var(--font-code);
}

/* Apply Söhne font to all body and UI text per LaunchDarkly brand guidelines */
html {
    font-family: var(--font-body);
}

/* Apply heading font to menu title */
h1.menu-title {
    font-family: var(--font-heading);
}
