/**
 * Lastik Font Face Declaration
 * 
 * Custom font for Public Parking Journal
 * 
 * @package PublicParkingJournal
 * @since 1.0.0
 */

@font-face {
    font-family: 'Lastik';
    src: url('./lastik.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Fallback for different server configurations */
@font-face {
    font-family: 'Lastik';
    src: url('../css/lastik.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Additional fallback for absolute paths */
@font-face {
    font-family: 'Lastik';
    src: url('/wp-content/plugins/public-parking-journal/assets/css/lastik.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} 