/* plumbers/static/css/fonts.css */

/* Raleway Light */
@font-face {
    font-family: 'Ubuntu';
    font-weight: 300;
    font-style: normal;
    font-display: swap; /* Шрифт показывается сразу системным, потом заменяется */
}

/* Raleway Regular */
@font-face {
    font-family: 'Ubuntu';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Raleway Medium */
@font-face {
    font-family: 'Ubuntu';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Raleway Bold */
@font-face {
    font-family: 'Ubuntu';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Применяем шрифт ко всему сайту */
* {
    font-family: 'Ubuntu', sans-serif;
}

body {
    font-weight: 400; /* Regular по умолчанию */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased; /* Сглаживание для Mac */
    -moz-osx-font-smoothing: grayscale;
}


/* Особо мягкий текст */
.soft-text {
    font-weight: 300; /* Light */
    letter-spacing: 0.3px;
}

/* Жирные акценты */
.strong-text {
    font-weight: 700; /* Bold */
}