/* Fraunces — títulos y frases importantes (Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');

/* Aribau Grotesk — textos largos y subtítulos */
@font-face {
    font-family: 'Aribau Grotesk';
    src: url('../fonts/AribauGroteskTRIAL-Rg.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Aribau Grotesk';
    src: url('../fonts/AribauGroteskTRIAL-RgIt.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Aribau Grotesk';
    src: url('../fonts/AribauGroteskTRIAL-Lt.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Aribau Grotesk';
    src: url('../fonts/AribauGroteskTRIAL-Md.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Aribau Grotesk';
    src: url('../fonts/AribauGroteskTRIAL-MdIt.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Aribau Grotesk';
    src: url('../fonts/AribauGroteskTRIAL-Bd.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Aribau Grotesk';
    src: url('../fonts/AribauGroteskTRIAL-BdIt.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

:root {
    --font-title: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: 'Aribau Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --bs-body-font-family: var(--font-body);
}

html {
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
}

h1, h2 {
    font-family: var(--font-title);
}

h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 600;
}

.h1, .h2 {
    font-family: var(--font-title);
}

.h3, .h4, .h5, .h6 {
    font-family: var(--font-body);
}

.font-title,
.fraunces {
    font-family: var(--font-title);
}

.font-body,
.aribau {
    font-family: var(--font-body);
}
