Hello Benvito,
I can see that only in Category Blog page, articles title are in <h2> tag.
So in order to change the header tag, please copy folder <blockquote>com_content</blockquote>
from <blockquote>pluginssystemjat3v3t3v3basehtml</blockquote>
to <blockquote>templatesja_merohtml</blockquote>
Open this file: <blockquote>templatesja_merohtmlcom_contentcategoryblog_item.php</blockquote>
Find these lines
<blockquote><h2 class=”article-title”>
<?php if ($params->get(‘link_titles’) && $params->get(‘access-view’)) : ?>
<a href=”<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)); ?>”> <?php echo $this->escape($this->item->title); ?></a>
<?php else : ?>
<?php echo $this->escape($this->item->title); ?>
<?php endif; ?>
</h2></blockquote>
Change to:
<blockquote><h1 class=”article-title”>
<?php if ($params->get(‘link_titles’) && $params->get(‘access-view’)) : ?>
<a href=”<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)); ?>”> <?php echo $this->escape($this->item->title); ?></a>
<?php else : ?>
<?php echo $this->escape($this->item->title); ?>
<?php endif; ?>
</h1></blockquote>
Hope this helps.