/*
 * Mark Pro Font Family
 *
 * This file defines the @font-face rules for the custom Mark Pro font.
 * Ensure you have the necessary licenses to use this font in your project.
 */

/* Mark Pro Light */
@font-face {
    font-family: 'Mark Pro';
    src: url('../css/MarkPro/MarkPro-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* Mark Pro Book (Regular) */
@font-face {
    font-family: 'Mark Pro';
    src: url('../css/MarkPro/MarkPro-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Mark Pro Bold */
@font-face {
    font-family: 'Mark Pro';
    src: url('../css/MarkPro/MarkPro-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Mark Pro Black (Extra-Bold/Heavy) */
@font-face {
    font-family: 'Mark Pro';
    src: url('../css/MarkPro/MarkPro-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

/*
 * Apply the font globally
 *
 * This rule sets Mark Pro as the default font for the entire application,
 * with fallbacks to common sans-serif fonts if it fails to load.
 */
body {
    font-family: 'Mark Pro', sans-serif;
}
