How to properly load/handle custom fonts in Next.js Open Graph (OG) images (new ImageResponse).
// load-google-fonts.ts
import { ImageResponseOptions } from "next/server";
type FontOptions = ImageResponseOptions["fonts"];
async function loadGoogleFont(font: string, weight: number) {