import { Inter, Lusitana } from 'next/font/google';

export const inter = Inter({ subsets: ['latin'] });

// your second font
export const lusitana = Lusitana({
  weight: ['400', '700'],
  subsets: ['latin'],
});
