/*
Theme Name: Cocoon Child
Template: cocoon-master
Description: Cocoonの子テーマ
Author: あなたの名前
Version: 1.0
*/

function add_mplus_fonts() {
  echo '<link href="https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@700&display=swap" rel="stylesheet">';
}
add_action('wp_head', 'add_mplus_fonts');

/* M PLUS 1pフォント適用 */
body,
.entry-title,
h1, h2, h3, h4, h5, h6,
.widget-title {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 700;
}

