/**
 * Bustacara Theme - Main Stylesheet
 * Fuentes y estilos globales
 */

/* Import Google Fonts - FORCE LOAD */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;600;700;800&display=swap');

/* Global Font Configuration */
:root {
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html,
body {
    font-family: var(--font-body) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.font-heading,
.entry-title,
.site-title {
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    letter-spacing: -0.5px !important;
}

/* Body Text */
p, a, span, li, td, th {
    font-family: var(--font-body) !important;
}

/* Menu Links */
#primary-menu a,
.nav-link {
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
}

/* Service Cards */
.service-card h3,
.property-card h3 {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
}

/* Buttons */
.btn,
button {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
}
