/* VD-LogoMaru Font Family */
@font-face {
    font-family: 'VD-LogoMaru';
    src: url('./vd-family-font/VD-LogoMaru-Bold-G.TTF') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

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

/* Example usage classes */
.heading-vd-logo-maru {
    font-family: var(--font-vd-logo-maru);
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.1;
}

.title-vd-logo-maru {
    font-family: var(--font-vd-logo-maru);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.3;
}

.accent-vd-logo-maru {
    font-family: var(--font-vd-logo-maru);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.4;
} 
