/* Futura字体系列定义 */

@font-face {
    font-family: 'Futura-Light';
    src: url('fonts/Futura Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Futura-Bold';
    src: url('fonts/Futura Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Futura Bk';
    src: url('fonts/Futura Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Futura-Medium';
    src: url('fonts/Futura Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Futura-Heavy';
    src: url('fonts/Futura Heavy.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'futura-bold';
    src: url('fonts/Futura Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* 添加这个通用的Futura字体，使用Futura-Medium作为默认 */
@font-face {
    font-family: 'Futura';
    src: url('fonts/Futura Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} 