/* Global Font Import - Dela Gothic One for headings, Open Sans Condensed for body */
@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans:wght@400;500;600;700;800&display=swap');

/* Global Font Application */
* {
    font-family: 'Sofia Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Specific font weights for different elements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Dela Gothic One', sans-serif;
    font-weight: 700;
}

.logo-eraon {
    font-family: 'Sofia Sans', sans-serif;
    font-weight: 800;
}
.main-font {
    font-family: 'Sofia Sans', sans-serif !important;
    font-weight: 900 !important;
}

button, .btn, .btn-login, .btn-register {
    font-family: 'Sofia Sans', sans-serif;
    font-weight: 600;
}

.nav-link, .nav-links a {
    font-family: 'Sofia Sans', sans-serif;
    font-weight: 500;
}

input, textarea, select {
    font-family: 'Sofia Sans', sans-serif;
    font-weight: 400;
}

body, p, span, div {
    font-family: 'Sofia Sans', sans-serif;
    font-weight: 400;
}

strong, b {
    font-family: 'Sofia Sans', sans-serif;
    font-weight: 700;
}