/**
 * Fonts CSS - Carnivoro.eu Original Design
 * 
 * Font: Assistant (Google Font - wie auf carnivoro.eu)
 */

/* Google Font: Assistant (Original von carnivoro.eu) */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@400;700&display=swap');

:root {
    /* Font Families */
    --font-family-base: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-heading: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-mono: 'Courier New', 'Monaco', monospace;
    
    /* Font Sizes */
    --font-size-base: 1.6rem;
    --font-size-small: 1.4rem;
    --font-size-large: 1.8rem;
    
    /* Font Weights */
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    
    /* Line Heights */
    --line-height-base: 1.6;
    --line-height-heading: 1.3;
}

/* Apply font to all elements */
body,
div,
p,
span,
a,
button,
input,
textarea,
select {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-normal);
}

/* Headlines */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-heading);
}
