export interface Font {
    family: string;
    source: string;
    weight?: string;
    style?: string;
}
