/* Font Management System - Tự động tạo từ Database */
/* File này được tạo tự động và có thể bị ghi đè */

/* Import Google Fonts */

/* Local Fonts */
@font-face {
    font-family: "VL Trirong SemiBold";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("/css/font/VL-TRIRONG-SEMIBOLD.OTF");
}


@font-face {
    font-family: "SVN-Effra";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/css/font/SVN-Effra.ttf");
}



/* CSS Variables cho Font */
:root {
  --font-secondary: 'VL Trirong SemiBold', serif;
  --font-primary: 'SVN-Effra', sans-serif;
}

/* Utility Classes cho Font */
.font-secondary {
    font-family: var(--font-secondary);
}

.font-primary {
    font-family: var(--font-primary);
}

