/* Master Fonts - Self-hosted Google Fonts replacement */

/* Noto Serif TC */
@import url('/assets/fonts/noto-serif-tc.css');

/* Noto Sans TC */
@import url('/assets/fonts/noto-sans-tc.css');

/* Font fallback stack */
:root {
    --font-primary: 'Noto Serif TC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Apply fonts to elements */
body {
    font-family: var(--font-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
}

p, span, div, a, button, input, textarea, select {
    font-family: var(--font-secondary);
}
