Shopify HydrogenでGoogle Fontsを読み込む方法

Shopify Hydrogenremix

コンテンツセキュリティポリシー(CSP)でGoogle Fontsがブロックされてしまい、正常に読み込むことができませんでした。
設定方法があったので以下に記載します。

app/entry.server.tsx

const {nonce, header, NonceProvider} = createContentSecurityPolicy({
        defaultSrc: [
            "'self'",
            'https://cdn.shopify.com',
            'https://shopify.com',
            'https://fonts.gstatic.com',
            'https://fonts.googleapis.com',
        ],
        styleSrc: [
            "'self'",
            "'unsafe-inline'",
            'https://cdn.shopify.com',
            'https://fonts.googleapis.com',
        ],
    });