/* SB Sans Interface Font (Sberbank font) fallback */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Fallback for SB Sans Interface */
body, h1, h2, h3, h4, h5, p, a, button, input, textarea {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* Specific styles to match SB Sans Interface */
h1 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

h2 {
    font-weight: 600;
    letter-spacing: -0.3px;
}

h3, h4 {
    font-weight: 500;
}

h5, p {
    font-weight: 400;
    letter-spacing: 0.1px;
}

.btn {
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Ensure consistency */
* {
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}