/* Import czcionki Lato z Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

/* Poprawki dla spójnego renderowania czcionek */
body {
    font-family: Lato, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Numer telefonu - regular weight */
.phone a {
    font-weight: 400 !important;
}

/* Przyciski - bold weight */
.button, .big-button {
    font-family: Lato, sans-serif !important;
    font-weight: 700 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Pogrubienia w treści - mocniejsze (900 zamiast 700) */
strong, b {
    font-weight: 900 !important;
}

/* Nagłówki - mocniejsze pogrubienie */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900 !important;
}