/* ══════════════════════════════════════════════════════════
   VOLNYN GLOBAL FONTS — Single source of truth
   Loaded by: Main Website, Freelancer, Property, Games
   ══════════════════════════════════════════════════════════ */

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Rubik:wght@400;500;600;700&display=swap");

/* Font Variables — all aliases used across apps */
:root {
    /* Primary (used by main site) */
    --font-heading: "Rubik", sans-serif;
    --font-body: "Poppins", sans-serif;

    /* Freelancer app aliases */
    --heading-font: "Rubik", sans-serif;
    --body-font: "Poppins", sans-serif;
    --Otomanopee-font: "Poppins", sans-serif;
}

/* Base body font */
body {
    font-family: var(--font-body);
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading);
}
