/* Self-hosted Google Fonts alternative - use system fonts with similar feel */
/* Raleway and Open Sans loaded from Google Fonts CDN is blocked by CSP */
/* Using a CSS-only approach with font-face declarations for local files */
/* If self-hosted font files are added later, update the src below */

/* For now, use system font stack that matches the Raleway/Open Sans aesthetic */
:root {
    --font-heading: 'Raleway', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Open Sans', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}
