/**
 * Fonts CSS for Hello Elementor Child Theme
 *
 * @package Hello_Elementor_Child
 * @author  Renie Namocot
 * @link    https://www.renienamocot.com/
 */

/* ========================================
   Univers Font Family
   ======================================== */

/*
 * To use Univers font, you need to have the font files.
 * Place your Univers font files in: /assets/fonts/
 *
 * Uncomment and modify the paths below once you have the font files:
 */

/*
@font-face {
    font-family: 'Univers';
    src: url('../fonts/Univers-Regular.woff2') format('woff2'),
         url('../fonts/Univers-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Univers';
    src: url('../fonts/Univers-Medium.woff2') format('woff2'),
         url('../fonts/Univers-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Univers';
    src: url('../fonts/Univers-Bold.woff2') format('woff2'),
         url('../fonts/Univers-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
*/

/* ========================================
   Apply Univers Font to Site
   ======================================== */

/* Apply font to entire site */
body,
.site-header,
.primary-menu,
.top-header-bar {
    font-family: 'Univers', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Ensure headings use Univers */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Univers', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Buttons and links */
button,
.button,
a {
    font-family: 'Univers', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/*
 * IMPORTANT: To use the actual Univers font:
 *
 * 1. Obtain licensed Univers font files (Regular, Medium, Bold)
 * 2. Convert them to web formats (.woff2 and .woff)
 * 3. Upload to: /assets/fonts/
 * 4. Uncomment the @font-face declarations above
 * 5. Update the file paths to match your font file names
 *
 * Until then, the system will use the fallback fonts listed above.
 */
