/* ==========================================================================
   HostingHub / WebCore Local & Privacy-Preserving Font Stacks (DSGVO-konform)
   ========================================================================== */

/* Modern Font Fallback Stacks - Zero External Tracking / No IP Leakage */
:root {
    --font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-brand: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', Menlo, Monaco, Consolas, 'Courier New', monospace;
}

body {
    font-family: var(--font-primary) !important;
}

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

code, kbd, samp, pre, .font-mono {
    font-family: var(--font-mono) !important;
}
