no the topbar menu isn't design to be the main menu. You can hide it for mobile and use the mobile menu by assigning a menu to the mobile menu, then using this css to hide the topbar on mobile:
@media (max-width: 992px) {
.topbarmenu ul {
display:none;
}
}
Kadence Themes