/**
 * Custom Fonts for Overhear Theme
 */

/* Import Raleway from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/* Sifonn Font Family */
@font-face {
    font-family: 'Sifonn';
    src: url('../fonts/SIFONN_PRO.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SifonnOutline';
    src: url('../fonts/SIFONN_BASIC_OUTLINE.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables for Easy Access */
:root {
    --font-raleway: 'Raleway', 'Arial', sans-serif;
    --font-sifonn: 'Sifonn', 'Arial', sans-serif;
    --font-sifonn-outline: 'SifonnOutline', 'Arial Black', sans-serif;
}

/* Apply to specific elements if needed */
.sifonn-font {
    font-family: var(--font-sifonn);
}

.sifonn-outline-font {
    font-family: var(--font-sifonn-outline);
    letter-spacing: 0.1em;
}

/* Hero heading - matches your React component */
.hero-heading,
.elementor-heading-title.sifonn {
    font-family: var(--font-sifonn-outline);
    letter-spacing: 0.1em;
}


