/* VD-LogoG Font Family */
@font-face {
    font-family: 'VD-LogoG';
    src: url('./vd-family-font/VD-LogoG-Medium-G1.TTF') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables for easy usage */
:root {
    --font-vd-logo-g: 'VD-LogoG', sans-serif;
}

/* Utility classes */
.font-vd-logo-g {
    font-family: var(--font-vd-logo-g);
    font-weight: 500;
}

/* Example usage classes */
.heading-vd-logo-g {
    font-family: var(--font-vd-logo-g);
    font-weight: 500;
    font-size: 2rem;
    line-height: 1.2;
}

.body-vd-logo-g {
    font-family: var(--font-vd-logo-g);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
} 
