/* Defining CSS custom properties (variables) for font weights */

/* Base font weight definitions */
:root {
    --font-weight-regular: 400;      /* Regular weight */
    --font-weight-bold: 700;         /* Bold weight */
    --font-weight-extra-bold: 800;   /* Extra bold weight */
    --font-weight-light: 300;        /* Light weight */
    --font-weight-medium: 500;       /* Medium weight */
    --font-weight-semi-bold: 600;    /* Semi-bold weight */
}
