/* static/your_app/css/fonts.css */
@font-face {
    font-family: 'Compose';
    src: url('/static/fonts/Compose_Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Vermeidet unsichtbaren Text während des Ladens */
}

@font-face {
    font-family: 'Compose';
    src: url('/static/fonts/Compose_Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Compose', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

h1, h2, h3 {
    font-weight: bold; /* Nutzt Compose_Bold.ttf */
}