/* Default Gallery Theme - Fonts */

/* Font loading for default bright theme */
body {
    font-family: var(--font-family-text);
    font-size: var(--font-size-body);
}

/* Fallback font definitions if custom fonts are not available */
:root {
    --font-family-text: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    --font-family-mono: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    --font-family-display: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    --font-size-body: 1rem;
}

/* Typography improvements for better readability */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-display);
    font-weight: 600;
}

code, pre {
    font-family: var(--font-family-mono);
    font-size: 0.875em;
    background-color: var(--background-highlight);
    color: var(--font-color-text);
    padding: 0.2em 0.4em;
    border-radius: 0.25rem;
}