/*
|--------------------------------------------------------------------------
| TYPOGRAPHY.CSS
|--------------------------------------------------------------------------
|
| Globale Typografie
|
| Enthält ausschliesslich allgemeine Schriftdefinitionen.
|
| Bereiche:
| - Body
| - Überschriften
| - Fliesstext
| - Links
| - Listen
| - Hervorhebungen
|
*/

/*
|--------------------------------------------------------------------------
| Body
|--------------------------------------------------------------------------
*/

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);

    background: var(--color-background);
    color: var(--color-text);

    font-weight: 400;
}

/*
|--------------------------------------------------------------------------
| Überschriften
|--------------------------------------------------------------------------
*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

/*
|--------------------------------------------------------------------------
| Links
|--------------------------------------------------------------------------
*/

a {
    transition: color .25s ease;
}

strong,
b {
    font-weight: 700;
}

em,
i {
    font-style: italic;
}