我的 SVG 和 google 字体 "Monoton" 有问题

I've an error with SVG and google fonts "Monoton"

嗨伙计们, 当我在浏览器中打开 svg 文件时,它给我一个“第 4 行第 76 列错误:EntityRef:期待';' “ 这是 svg 代码:

<svg xmlns="http://www.w3.org/2000/svg" width="96.75" height="33" viewBox="0 0 387 132">
  <defs>
    <style>
      @import url('https://fonts.googleapis.com/css2family=Monoton&display=swap');
      .cls-1 {
        font-size: 150px;
        fill: #888;
        font-family: Monoton;
      }
    </style>
  </defs>
  <text id="DAG" class="cls-1" x="-7.001" y="126.575">DAG</text>
</svg>

删除:&display=swap(第 4 行第 76 列)

<svg xmlns="http://www.w3.org/2000/svg" width="96.75" height="33" viewBox="0 0 387 132">
  <defs>
    <style>
      @import url('https://fonts.googleapis.com/css2family=Monoton');
      .cls-1 {
        font-size: 150px;
        fill: #888;
        font-family: Monoton;
      }
    </style>
  </defs>
  <text id="DAG" class="cls-1" x="-7.001" y="126.575">DAG</text>
</svg>